home *** CD-ROM | disk | FTP | other *** search
/ The Epic Interactive Encyclopedia 1998 / Epic Interactive Encyclopedia, The - 1998 Edition (1998)(Epic Marketing).iso / Menufiles / Vin-archive / MessySUBS.LHA / MoreMESSY_Subs / Floating-point_notation / INFOTEXT < prev   
Text File  |  1992-09-03  |  791b  |  20 lines

  1. System of representing numbers as multiples
  2. of the appropriate base raised to some power;
  3. for example, the number 97.8 can be expressed
  4. as 0.0978 x 10^3 or 9780 x 10^-2. In
  5. computing, the number is expressed as a
  6. decimal fraction, so 97.8 becomes 0.978 x
  7. 10^2. See fixed-point notation. In a
  8. computer, the numbers are represented by
  9. pairs; 97.8 = (.978, +2). The first number of
  10. the pair is called the mantissa and the
  11. second the exponent. The definition applies
  12. equally to numbers expressed to a different
  13. base (for example, binary fractions muliplied
  14. by two raised to some power). The advantage
  15. of floating-point notation is that very large
  16. and very small numbers can be expressed with
  17. a few digits. Thus (.978, +18) written out in
  18. full would require 15 digits (978 followed by
  19. 18 zeros).
  20.